forgot to commit the header, fixed now.
authorMichael Natterer <mitch@imendio.com>
Tue, 1 Jul 2008 07:45:40 +0000 (07:45 +0000)
committerMichael Natterer <mitch@src.gnome.org>
Tue, 1 Jul 2008 07:45:40 +0000 (07:45 +0000)
2008-07-01  Michael Natterer  <mitch@imendio.com>

* gtk/gtkscalebutton.h: forgot to commit the header, fixed now.

svn path=/trunk/; revision=20719

ChangeLog
gtk/gtkscalebutton.h

index dbf85e48a104164a502806d239c8791fa7b7f762..7d3f43de52f4e03bf0549d0b0d736b8d062f1a98 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-07-01  Michael Natterer  <mitch@imendio.com>
+
+       * gtk/gtkscalebutton.h: forgot to commit the header, fixed now.
+
 2008-07-01  Matthias Clasen  <mclasen@redhat.com>
 
        539790 – [PATCH] Please add three new settings to GtkSettings
index 0b4e2e54532ea0061c0b2138a93c41d3654e3064..2465ecf57dbc12106fa4b51ad08a0f28db7b68c7 100644 (file)
@@ -81,20 +81,23 @@ struct _GtkScaleButtonClass
   void (*_gtk_reserved4) (void);
 };
 
-GType          gtk_scale_button_get_type       (void) G_GNUC_CONST;
-GtkWidget*     gtk_scale_button_new            (GtkIconSize     size,
-                                                gdouble         min,
-                                                gdouble         max,
-                                                gdouble         step,
-                                                const gchar   **icons);
-void           gtk_scale_button_set_icons      (GtkScaleButton *button,
-                                                const gchar   **icons);
-gdouble                gtk_scale_button_get_value      (GtkScaleButton *button);
-void           gtk_scale_button_set_value      (GtkScaleButton *button,
-                                                gdouble         value);
-GtkAdjustment* gtk_scale_button_get_adjustment (GtkScaleButton *button);
-void           gtk_scale_button_set_adjustment (GtkScaleButton *button,
-                                                GtkAdjustment  *adjustment);
+GType            gtk_scale_button_get_type        (void) G_GNUC_CONST;
+GtkWidget *      gtk_scale_button_new             (GtkIconSize      size,
+                                                   gdouble          min,
+                                                   gdouble          max,
+                                                   gdouble          step,
+                                                   const gchar    **icons);
+void             gtk_scale_button_set_icons       (GtkScaleButton  *button,
+                                                   const gchar    **icons);
+gdouble          gtk_scale_button_get_value       (GtkScaleButton  *button);
+void             gtk_scale_button_set_value       (GtkScaleButton  *button,
+                                                   gdouble          value);
+GtkAdjustment *  gtk_scale_button_get_adjustment  (GtkScaleButton  *button);
+void             gtk_scale_button_set_adjustment  (GtkScaleButton  *button,
+                                                   GtkAdjustment   *adjustment);
+GtkOrientation   gtk_scale_button_get_orientation (GtkScaleButton  *button);
+void             gtk_scale_button_set_orientation (GtkScaleButton  *button,
+                                                   GtkOrientation   orientation);
 
 G_END_DECLS